/* /magic/The Thirty-One Scam.css */

*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}

body {
	background-color:ivory;
	font-family:sans-serif;
}
p {
	padding: 2px 0 0 0;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-around;
}
#head div img {
	width:40%;
	display:block;
	margin:0 auto;
}
#title {
	font-style: italic;
	color:#00f;
	font-size:14px;
}
#box {
	display:flex;
	width:90vw;
	max-width:900px;
	flex-flow:column;
	margin:0 auto;
}
#col1 {
	flex:1;
	text-align:center;
}
.card {
	width:15%;
	cursor:pointer;
}
#col2 {
	flex:1;
	text-align:center;
	display:flex;
	flex-flow:column;
}
#total_dollar {
	margin:5px 50px 0 50px;
	display:flex;
	justify-content: space-between;
}
#total {
	font-size:30px;
	color:brown;
}
#dollar {
	font-size:30px;
	color:green;
}
#msg {
	font-size: 16px;
}
.n31 {
	color:brown;
	font-size: 20px;
}
#ready {
	background: peru;
	margin:5px auto;
	color:ivory;
	width:70px;
	text-align:center;
	padding:4px 0;
	font-size: 16px;
	border-radius: 15%;
	cursor:pointer;
}
#hand {
	position:absolute;
	display:none;
}
@media screen and (orientation:landscape) {
	#title {
		font-size: 20px;
	}
	#box {
		flex-flow:row;
		margin-top:10px;
	}
	#msg {
		margin:10px 0;
	}
	.n31 {
		font-size: 24px;
	}
	#ready {
		font-size: 20px;
	}
} 

